home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / tip / prmonth.tip < prev    next >
Text File  |  1993-09-15  |  2KB  |  55 lines

  1. % This macro source file is from the four volume series
  2. % "TeX in Practice" by Stephan von Bechtolsheim, published
  3. % 1993 by Springer-Verlag, New York.
  4. % Copyright 1993 Stephan von Bechtolsheim.
  5. % No warranty or liability is assumed.
  6. % This macro may be copied freely if no fees other than
  7. % media cost or shipping charges are charged and as long
  8. % as this copyright and the following source code itself
  9. % is not changed. Please see the series for further information.
  10. %
  11. % Version: 1.0
  12. % Date: May 1, 1993
  13. %
  14. %
  15. % This source code is documented in 26.4, p. III-362.
  16. % Original source in file "macros6.TEX", starting line 250.
  17. \wlog{L: "prmonth.tip" ["macros6.TEX," l. 250, p. III-362]}%
  18. % This file DOES belong to format "texip."
  19. \InputD{legmonth.tip}
  20. \catcode`\@ = 11
  21. \def\ProvideMonth #1#2#3{%
  22.     \CheckLegalMonth{#1}%
  23.     \ifcase #1\relax
  24.     \or
  25.         \def#3{January}\or
  26.         \def#3{February}\or
  27.         \def#3{March}\or
  28.         \def#3{April}\or
  29.         \def#3{May}\or
  30.         \def#3{June}\or
  31.         \def#3{July}\or
  32.         \def#3{August}\or
  33.         \def#3{September}\or
  34.         \def#3{October}\or
  35.         \def#3{November}\or
  36.         \def#3{December}% 
  37.     \fi
  38.     \ifnum #2 = 1
  39.         \def\@TempProvideMonth ##1##2##3##4\@Del{%
  40.             \xdef#3{##1##2##3}%
  41.         }%
  42.         \expandafter\@TempProvideMonth#3\@Del
  43.     \fi
  44. }
  45. \def\PrintMonth #1#2{%
  46.     {%
  47.         \ProvideMonth{#1}{#2}{\@PrintMonth}%
  48.         \@PrintMonth
  49.     }%
  50. }
  51. \def\PrintCurrentMonth{% 
  52.     \PrintMonth{\month}{0}%
  53. }
  54. \catcode`\@ = 12
  55.